{% extends 'admin/index.html' %}
{% load humanize %}
{% block content_title %}{% endblock %}
{% block coltype %}bp content-wrapper{% endblock %}
{% block nav-sidebar %}
{% include "admin/nav_sidebar.html" %}
{% endblock %}
{% block sidebar %}
{% endblock %}
{% block content %}
Total Clicks
{{ total_clicks|intcomma }}
Total Links
{{ total_links|intcomma }}
{% if user.is_superuser %}
Total Users
{{ total_users|intcomma }}
{% endif %}
Total Domains
{{ total_domains|intcomma }}
| Flag |
Country |
Clicks |
{% for country, clicks, percent in top_countries %}
 |
{% if country.name %}{{ country.name }}{% else %}Unknown{% endif %} |
{{ clicks }} ({{ percent }}%) |
{% empty %}
| No data |
{% endfor %}
| Referrer |
Clicks |
{% for referer, clicks in referers %}
|
{% if referer %}
{{ referer|truncatechars:80 }}
{% else %}
Direct, Email, SMS
{% endif %}
|
{{ clicks }} |
{% empty %}
| No data |
{% endfor %}
{% if user.is_superuser %}
| #ID |
Title |
links |
Clicks |
Status |
Created at |
Actions |
{% for link in recent_links %}
| {{ link.id }} |
{{ link.title }}
|
{{ link.show_urls }}
|
{{ link.clicks }} |
{{ link.get_status }} |
{{ link.created }} |
{{ link.show_actions }} |
{% empty %}
| No data |
{% endfor %}
{% endif %}
{% endblock %}